b08a5188c1d0dcb104ecc3d6308fa7a06cc3de36,tooling/ide/eclipse-core/src/org/apache/sling/ide/eclipse/core/internal/SlingLaunchpadBehaviour.java,SlingLaunchpadBehaviour,start,#IProgressMonitor#,97

Before Change


                        monitor);
                
            } catch (URISyntaxException e) {
                Activator.getDefault().getLog().log(new Status(IStatus.WARNING, Activator.PLUGIN_ID, 
                        "Failed retrieving information about the installation support bundle", e));
            } catch (OsgiClientException e) {
                Activator.getDefault().getLog().log(new Status(IStatus.WARNING, Activator.PLUGIN_ID, 
                        "Failed retrieving information about the installation support bundle", e));

After Change


                        monitor);
                
            } catch (URISyntaxException e) {
                Activator.getDefault().getPluginLogger()
                        .warn("Failed retrieving information about the installation support bundle", e);
            } catch (OsgiClientException e) {
                Activator.getDefault().getPluginLogger()
                        .warn("Failed retrieving information about the installation support bundle", e);